home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / wtjmarch.zip / CONTROLS.ZIP / MAKEFILE next >
Text File  |  1992-02-14  |  502b  |  21 lines

  1.  
  2. # makefile for Borland C++
  3.  
  4. all:            newstat.dll toolbar.obj
  5.  
  6. newstat.dll:    newstat.obj statdll.obj newstat.def
  7.     tlink /Twd /n /c /L\borlandc\lib \borlandc\lib\c0ds newstat statdll,\
  8.           newstat,\
  9.           ,\
  10.           cws cs import,\
  11.           newstat
  12.  
  13. newstat.obj:    newstat.c newstat.h
  14.         bcc -c -ms -WD newstat.c
  15.  
  16. statdll.obj:    statdll.c statdll.h
  17.         bcc -c -ms -WD statdll.c
  18.  
  19. toolbar.obj:    toolbar.c toolbar.h
  20.         bcc -c -ms -W toolbar.c
  21.